home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / optparse.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  47KB  |  1,402 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """optparse - a powerful, extensible, and easy-to-use option parser.
  5.  
  6. By Greg Ward <gward@python.net>
  7.  
  8. Originally distributed as Optik; see http://optik.sourceforge.net/ .
  9.  
  10. If you have problems with this module, please do not file bugs,
  11. patches, or feature requests with Python; instead, use Optik's
  12. SourceForge project page:
  13.   http://sourceforge.net/projects/optik
  14.  
  15. For support, use the optik-users@lists.sourceforge.net mailing list
  16. (http://lists.sourceforge.net/lists/listinfo/optik-users).
  17. """
  18. __version__ = '1.5a2'
  19. __all__ = [
  20.     'Option',
  21.     'SUPPRESS_HELP',
  22.     'SUPPRESS_USAGE',
  23.     'Values',
  24.     'OptionContainer',
  25.     'OptionGroup',
  26.     'OptionParser',
  27.     'HelpFormatter',
  28.     'IndentedHelpFormatter',
  29.     'TitledHelpFormatter',
  30.     'OptParseError',
  31.     'OptionError',
  32.     'OptionConflictError',
  33.     'OptionValueError',
  34.     'BadOptionError']
  35. __copyright__ = '\nCopyright (c) 2001-2004 Gregory P. Ward.  All rights reserved.\nCopyright (c) 2002-2004 Python Software Foundation.  All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n  * Redistributions of source code must retain the above copyright\n    notice, this list of conditions and the following disclaimer.\n\n  * Redistributions in binary form must reproduce the above copyright\n    notice, this list of conditions and the following disclaimer in the\n    documentation and/or other materials provided with the distribution.\n\n  * Neither the name of the author nor the names of its\n    contributors may be used to endorse or promote products derived from\n    this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS\nIS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n'
  36. import sys
  37. import os
  38. import types
  39. import textwrap
  40. from gettext import gettext as _
  41.  
  42. def _repr(self):
  43.     return '<%s at 0x%x: %s>' % (self.__class__.__name__, id(self), self)
  44.  
  45.  
  46. class OptParseError(Exception):
  47.     
  48.     def __init__(self, msg):
  49.         self.msg = msg
  50.  
  51.     
  52.     def __str__(self):
  53.         return self.msg
  54.  
  55.  
  56.  
  57. class OptionError(OptParseError):
  58.     '''
  59.     Raised if an Option instance is created with invalid or
  60.     inconsistent arguments.
  61.     '''
  62.     
  63.     def __init__(self, msg, option):
  64.         self.msg = msg
  65.         self.option_id = str(option)
  66.  
  67.     
  68.     def __str__(self):
  69.         if self.option_id:
  70.             return 'option %s: %s' % (self.option_id, self.msg)
  71.         else:
  72.             return self.msg
  73.  
  74.  
  75.  
  76. class OptionConflictError(OptionError):
  77.     '''
  78.     Raised if conflicting options are added to an OptionParser.
  79.     '''
  80.     pass
  81.  
  82.  
  83. class OptionValueError(OptParseError):
  84.     '''
  85.     Raised if an invalid option value is encountered on the command
  86.     line.
  87.     '''
  88.     pass
  89.  
  90.  
  91. class BadOptionError(OptParseError):
  92.     '''
  93.     Raised if an invalid or ambiguous option is seen on the command-line.
  94.     '''
  95.     pass
  96.  
  97.  
  98. class HelpFormatter:
  99.     '''
  100.     Abstract base class for formatting option help.  OptionParser
  101.     instances should use one of the HelpFormatter subclasses for
  102.     formatting help; by default IndentedHelpFormatter is used.
  103.  
  104.     Instance attributes:
  105.       parser : OptionParser
  106.         the controlling OptionParser instance
  107.       indent_increment : int
  108.         the number of columns to indent per nesting level
  109.       max_help_position : int
  110.         the maximum starting column for option help text
  111.       help_position : int
  112.         the calculated starting column for option help text;
  113.         initially the same as the maximum
  114.       width : int
  115.         total number of columns for output (pass None to constructor for
  116.         this value to be taken from the $COLUMNS environment variable)
  117.       level : int
  118.         current indentation level
  119.       current_indent : int
  120.         current indentation level (in columns)
  121.       help_width : int
  122.         number of columns available for option help text (calculated)
  123.       default_tag : str
  124.         text to replace with each option\'s default value, "%default"
  125.         by default.  Set to false value to disable default value expansion.
  126.       option_strings : { Option : str }
  127.         maps Option instances to the snippet of help text explaining
  128.         the syntax of that option, e.g. "-h, --help" or
  129.         "-fFILE, --file=FILE"
  130.       _short_opt_fmt : str
  131.         format string controlling how short options with values are
  132.         printed in help text.  Must be either "%s%s" ("-fFILE") or
  133.         "%s %s" ("-f FILE"), because those are the two syntaxes that
  134.         Optik supports.
  135.       _long_opt_fmt : str
  136.         similar but for long options; must be either "%s %s" ("--file FILE")
  137.         or "%s=%s" ("--file=FILE").
  138.     '''
  139.     NO_DEFAULT_VALUE = 'none'
  140.     
  141.     def __init__(self, indent_increment, max_help_position, width, short_first):
  142.         self.parser = None
  143.         self.indent_increment = indent_increment
  144.         self.help_position = self.max_help_position = max_help_position
  145.         if width is None:
  146.             
  147.             try:
  148.                 width = int(os.environ['COLUMNS'])
  149.             except (KeyError, ValueError):
  150.                 width = 80
  151.  
  152.             width -= 2
  153.         
  154.         self.width = width
  155.         self.current_indent = 0
  156.         self.level = 0
  157.         self.help_width = None
  158.         self.short_first = short_first
  159.         self.default_tag = '%default'
  160.         self.option_strings = { }
  161.         self._short_opt_fmt = '%s %s'
  162.         self._long_opt_fmt = '%s=%s'
  163.  
  164.     
  165.     def set_parser(self, parser):
  166.         self.parser = parser
  167.  
  168.     
  169.     def set_short_opt_delimiter(self, delim):
  170.         if delim not in ('', ' '):
  171.             raise ValueError('invalid metavar delimiter for short options: %r' % delim)
  172.         
  173.         self._short_opt_fmt = '%s' + delim + '%s'
  174.  
  175.     
  176.     def set_long_opt_delimiter(self, delim):
  177.         if delim not in ('=', ' '):
  178.             raise ValueError('invalid metavar delimiter for long options: %r' % delim)
  179.         
  180.         self._long_opt_fmt = '%s' + delim + '%s'
  181.  
  182.     
  183.     def indent(self):
  184.         self.current_indent += self.indent_increment
  185.         self.level += 1
  186.  
  187.     
  188.     def dedent(self):
  189.         self.current_indent -= self.indent_increment
  190.         self.level -= 1
  191.  
  192.     
  193.     def format_usage(self, usage):
  194.         raise NotImplementedError, 'subclasses must implement'
  195.  
  196.     
  197.     def format_heading(self, heading):
  198.         raise NotImplementedError, 'subclasses must implement'
  199.  
  200.     
  201.     def format_description(self, description):
  202.         if not description:
  203.             return ''
  204.         
  205.         desc_width = self.width - self.current_indent
  206.         indent = ' ' * self.current_indent
  207.         return textwrap.fill(description, desc_width, initial_indent = indent, subsequent_indent = indent) + '\n'
  208.  
  209.     
  210.     def expand_default(self, option):
  211.         if self.parser is None or not (self.default_tag):
  212.             return option.help
  213.         
  214.         default_value = self.parser.defaults.get(option.dest)
  215.         if default_value is NO_DEFAULT or default_value is None:
  216.             default_value = self.NO_DEFAULT_VALUE
  217.         
  218.         return option.help.replace(self.default_tag, str(default_value))
  219.  
  220.     
  221.     def format_option(self, option):
  222.         result = []
  223.         opts = self.option_strings[option]
  224.         opt_width = self.help_position - self.current_indent - 2
  225.         if len(opts) > opt_width:
  226.             opts = '%*s%s\n' % (self.current_indent, '', opts)
  227.             indent_first = self.help_position
  228.         else:
  229.             opts = '%*s%-*s  ' % (self.current_indent, '', opt_width, opts)
  230.             indent_first = 0
  231.         result.append(opts)
  232.         if option.help:
  233.             help_text = self.expand_default(option)
  234.             help_lines = textwrap.wrap(help_text, self.help_width)
  235.             result.append('%*s%s\n' % (indent_first, '', help_lines[0]))
  236.             []([ '%*s%s\n' % (self.help_position, '', line) for line in help_lines[1:] ])
  237.         elif opts[-1] != '\n':
  238.             result.append('\n')
  239.         
  240.         return ''.join(result)
  241.  
  242.     
  243.     def store_option_strings(self, parser):
  244.         self.indent()
  245.         max_len = 0
  246.         for opt in parser.option_list:
  247.             strings = self.format_option_strings(opt)
  248.             self.option_strings[opt] = strings
  249.             max_len = max(max_len, len(strings) + self.current_indent)
  250.         
  251.         self.indent()
  252.         for group in parser.option_groups:
  253.             for opt in group.option_list:
  254.                 strings = self.format_option_strings(opt)
  255.                 self.option_strings[opt] = strings
  256.                 max_len = max(max_len, len(strings) + self.current_indent)
  257.             
  258.         
  259.         self.dedent()
  260.         self.dedent()
  261.         self.help_position = min(max_len + 2, self.max_help_position)
  262.         self.help_width = self.width - self.help_position
  263.  
  264.     
  265.     def format_option_strings(self, option):
  266.         '''Return a comma-separated list of option strings & metavariables.'''
  267.         return ', '.join(opts)
  268.  
  269.  
  270.  
  271. class IndentedHelpFormatter(HelpFormatter):
  272.     '''Format help with indented section bodies.
  273.     '''
  274.     
  275.     def __init__(self, indent_increment = 2, max_help_position = 24, width = None, short_first = 1):
  276.         HelpFormatter.__init__(self, indent_increment, max_help_position, width, short_first)
  277.  
  278.     
  279.     def format_usage(self, usage):
  280.         return _('usage: %s\n') % usage
  281.  
  282.     
  283.     def format_heading(self, heading):
  284.         return '%*s%s:\n' % (self.current_indent, '', heading)
  285.  
  286.  
  287.  
  288. class TitledHelpFormatter(HelpFormatter):
  289.     '''Format help with underlined section headers.
  290.     '''
  291.     
  292.     def __init__(self, indent_increment = 0, max_help_position = 24, width = None, short_first = 0):
  293.         HelpFormatter.__init__(self, indent_increment, max_help_position, width, short_first)
  294.  
  295.     
  296.     def format_usage(self, usage):
  297.         return '%s  %s\n' % (self.format_heading(_('Usage')), usage)
  298.  
  299.     
  300.     def format_heading(self, heading):
  301.         return '%s\n%s\n' % (heading, '=-'[self.level] * len(heading))
  302.  
  303.  
  304. _builtin_cvt = {
  305.     'int': (int, _('integer')),
  306.     'long': (long, _('long integer')),
  307.     'float': (float, _('floating-point')),
  308.     'complex': (complex, _('complex')) }
  309.  
  310. def check_builtin(option, opt, value):
  311.     (cvt, what) = _builtin_cvt[option.type]
  312.     
  313.     try:
  314.         return cvt(value)
  315.     except ValueError:
  316.         raise OptionValueError(_('option %s: invalid %s value: %r') % (opt, what, value))
  317.  
  318.  
  319.  
  320. def check_choice(option, opt, value):
  321.     if value in option.choices:
  322.         return value
  323.     else:
  324.         choices = ', '.join(map(repr, option.choices))
  325.         raise OptionValueError(_('option %s: invalid choice: %r (choose from %s)') % (opt, value, choices))
  326.  
  327. NO_DEFAULT = ('NO', 'DEFAULT')
  328.  
  329. class Option:
  330.     '''
  331.     Instance attributes:
  332.       _short_opts : [string]
  333.       _long_opts : [string]
  334.  
  335.       action : string
  336.       type : string
  337.       dest : string
  338.       default : any
  339.       nargs : int
  340.       const : any
  341.       choices : [string]
  342.       callback : function
  343.       callback_args : (any*)
  344.       callback_kwargs : { string : any }
  345.       help : string
  346.       metavar : string
  347.     '''
  348.     ATTRS = [
  349.         'action',
  350.         'type',
  351.         'dest',
  352.         'default',
  353.         'nargs',
  354.         'const',
  355.         'choices',
  356.         'callback',
  357.         'callback_args',
  358.         'callback_kwargs',
  359.         'help',
  360.         'metavar']
  361.     ACTIONS = ('store', 'store_const', 'store_true', 'store_false', 'append', 'count', 'callback', 'help', 'version')
  362.     STORE_ACTIONS = ('store', 'store_const', 'store_true', 'store_false', 'append', 'count')
  363.     TYPED_ACTIONS = ('store', 'append', 'callback')
  364.     ALWAYS_TYPED_ACTIONS = ('store', 'append')
  365.     TYPES = ('string', 'int', 'long', 'float', 'complex', 'choice')
  366.     TYPE_CHECKER = {
  367.         'int': check_builtin,
  368.         'long': check_builtin,
  369.         'float': check_builtin,
  370.         'complex': check_builtin,
  371.         'choice': check_choice }
  372.     CHECK_METHODS = None
  373.     
  374.     def __init__(self, *opts, **attrs):
  375.         self._short_opts = []
  376.         self._long_opts = []
  377.         opts = self._check_opt_strings(opts)
  378.         self._set_opt_strings(opts)
  379.         self._set_attrs(attrs)
  380.         for checker in self.CHECK_METHODS:
  381.             checker(self)
  382.         
  383.  
  384.     
  385.     def _check_opt_strings(self, opts):
  386.         opts = filter(None, opts)
  387.         if not opts:
  388.             raise TypeError('at least one option string must be supplied')
  389.         
  390.         return opts
  391.  
  392.     
  393.     def _set_opt_strings(self, opts):
  394.         for opt in opts:
  395.             if len(opt) < 2:
  396.                 raise OptionError('invalid option string %r: must be at least two characters long' % opt, self)
  397.                 continue
  398.             if len(opt) == 2:
  399.                 if not opt[0] == '-' and opt[1] != '-':
  400.                     raise OptionError('invalid short option string %r: must be of the form -x, (x any non-dash char)' % opt, self)
  401.                 
  402.                 self._short_opts.append(opt)
  403.                 continue
  404.             if not opt[0:2] == '--' and opt[2] != '-':
  405.                 raise OptionError('invalid long option string %r: must start with --, followed by non-dash' % opt, self)
  406.             
  407.             self._long_opts.append(opt)
  408.         
  409.  
  410.     
  411.     def _set_attrs(self, attrs):
  412.         for attr in self.ATTRS:
  413.             if attrs.has_key(attr):
  414.                 setattr(self, attr, attrs[attr])
  415.                 del attrs[attr]
  416.                 continue
  417.             if attr == 'default':
  418.                 setattr(self, attr, NO_DEFAULT)
  419.                 continue
  420.             setattr(self, attr, None)
  421.         
  422.         if attrs:
  423.             raise OptionError('invalid keyword arguments: %s' % ', '.join(attrs.keys()), self)
  424.         
  425.  
  426.     
  427.     def _check_action(self):
  428.         if self.action is None:
  429.             self.action = 'store'
  430.         elif self.action not in self.ACTIONS:
  431.             raise OptionError('invalid action: %r' % self.action, self)
  432.         
  433.  
  434.     
  435.     def _check_type(self):
  436.         if self.type is None:
  437.             if self.action in self.ALWAYS_TYPED_ACTIONS:
  438.                 if self.choices is not None:
  439.                     self.type = 'choice'
  440.                 else:
  441.                     self.type = 'string'
  442.             
  443.         elif type(self.type) is type:
  444.             self.type = self.type.__name__
  445.         
  446.         if self.type == 'str':
  447.             self.type = 'string'
  448.         
  449.         if self.type not in self.TYPES:
  450.             raise OptionError('invalid option type: %r' % self.type, self)
  451.         
  452.         if self.action not in self.TYPED_ACTIONS:
  453.             raise OptionError('must not supply a type for action %r' % self.action, self)
  454.         
  455.  
  456.     
  457.     def _check_choice(self):
  458.         if self.type == 'choice':
  459.             if self.choices is None:
  460.                 raise OptionError("must supply a list of choices for type 'choice'", self)
  461.             elif type(self.choices) not in (types.TupleType, types.ListType):
  462.                 raise OptionError("choices must be a list of strings ('%s' supplied)" % str(type(self.choices)).split("'")[1], self)
  463.             
  464.         elif self.choices is not None:
  465.             raise OptionError('must not supply choices for type %r' % self.type, self)
  466.         
  467.  
  468.     
  469.     def _check_dest(self):
  470.         if not self.action in self.STORE_ACTIONS:
  471.             pass
  472.         takes_value = self.type is not None
  473.         if self.dest is None and takes_value:
  474.             if self._long_opts:
  475.                 self.dest = self._long_opts[0][2:].replace('-', '_')
  476.             else:
  477.                 self.dest = self._short_opts[0][1]
  478.         
  479.  
  480.     
  481.     def _check_const(self):
  482.         if self.action != 'store_const' and self.const is not None:
  483.             raise OptionError("'const' must not be supplied for action %r" % self.action, self)
  484.         
  485.  
  486.     
  487.     def _check_nargs(self):
  488.         if self.action in self.TYPED_ACTIONS:
  489.             if self.nargs is None:
  490.                 self.nargs = 1
  491.             
  492.         elif self.nargs is not None:
  493.             raise OptionError("'nargs' must not be supplied for action %r" % self.action, self)
  494.         
  495.  
  496.     
  497.     def _check_callback(self):
  498.         if self.action == 'callback':
  499.             if not callable(self.callback):
  500.                 raise OptionError('callback not callable: %r' % self.callback, self)
  501.             
  502.             if self.callback_args is not None and type(self.callback_args) is not types.TupleType:
  503.                 raise OptionError('callback_args, if supplied, must be a tuple: not %r' % self.callback_args, self)
  504.             
  505.             if self.callback_kwargs is not None and type(self.callback_kwargs) is not types.DictType:
  506.                 raise OptionError('callback_kwargs, if supplied, must be a dict: not %r' % self.callback_kwargs, self)
  507.             
  508.         elif self.callback is not None:
  509.             raise OptionError('callback supplied (%r) for non-callback option' % self.callback, self)
  510.         
  511.         if self.callback_args is not None:
  512.             raise OptionError('callback_args supplied for non-callback option', self)
  513.         
  514.         if self.callback_kwargs is not None:
  515.             raise OptionError('callback_kwargs supplied for non-callback option', self)
  516.         
  517.  
  518.     CHECK_METHODS = [
  519.         _check_action,
  520.         _check_type,
  521.         _check_choice,
  522.         _check_dest,
  523.         _check_const,
  524.         _check_nargs,
  525.         _check_callback]
  526.     
  527.     def __str__(self):
  528.         return '/'.join(self._short_opts + self._long_opts)
  529.  
  530.     __repr__ = _repr
  531.     
  532.     def takes_value(self):
  533.         return self.type is not None
  534.  
  535.     
  536.     def get_opt_string(self):
  537.         if self._long_opts:
  538.             return self._long_opts[0]
  539.         else:
  540.             return self._short_opts[0]
  541.  
  542.     
  543.     def check_value(self, opt, value):
  544.         checker = self.TYPE_CHECKER.get(self.type)
  545.         if checker is None:
  546.             return value
  547.         else:
  548.             return checker(self, opt, value)
  549.  
  550.     
  551.     def convert_value(self, opt, value):
  552.         pass
  553.  
  554.     
  555.     def process(self, opt, value, values, parser):
  556.         value = self.convert_value(opt, value)
  557.         return self.take_action(self.action, self.dest, opt, value, values, parser)
  558.  
  559.     
  560.     def take_action(self, action, dest, opt, value, values, parser):
  561.         if action == 'store':
  562.             setattr(values, dest, value)
  563.         elif action == 'store_const':
  564.             setattr(values, dest, self.const)
  565.         elif action == 'store_true':
  566.             setattr(values, dest, True)
  567.         elif action == 'store_false':
  568.             setattr(values, dest, False)
  569.         elif action == 'append':
  570.             values.ensure_value(dest, []).append(value)
  571.         elif action == 'count':
  572.             setattr(values, dest, values.ensure_value(dest, 0) + 1)
  573.         elif action == 'callback':
  574.             if not self.callback_args:
  575.                 pass
  576.             args = ()
  577.             if not self.callback_kwargs:
  578.                 pass
  579.             kwargs = { }
  580.             self.callback(self, opt, value, parser, *args, **kwargs)
  581.         elif action == 'help':
  582.             parser.print_help()
  583.             parser.exit()
  584.         elif action == 'version':
  585.             parser.print_version()
  586.             parser.exit()
  587.         else:
  588.             raise RuntimeError, 'unknown action %r' % self.action
  589.         return 1
  590.  
  591.  
  592. SUPPRESS_HELP = 'SUPPRESS' + 'HELP'
  593. SUPPRESS_USAGE = 'SUPPRESS' + 'USAGE'
  594.  
  595. try:
  596.     (True, False)
  597. except NameError:
  598.     (True, False) = (1, 0)
  599.  
  600.  
  601. try:
  602.     basestring
  603. except NameError:
  604.     basestring = (str, unicode)
  605.  
  606.  
  607. class Values:
  608.     
  609.     def __init__(self, defaults = None):
  610.         if defaults:
  611.             for attr, val in defaults.items():
  612.                 setattr(self, attr, val)
  613.             
  614.         
  615.  
  616.     
  617.     def __str__(self):
  618.         return str(self.__dict__)
  619.  
  620.     __repr__ = _repr
  621.     
  622.     def __eq__(self, other):
  623.         if isinstance(other, Values):
  624.             return self.__dict__ == other.__dict__
  625.         elif isinstance(other, dict):
  626.             return self.__dict__ == other
  627.         else:
  628.             return False
  629.  
  630.     
  631.     def __ne__(self, other):
  632.         return not (self == other)
  633.  
  634.     
  635.     def _update_careful(self, dict):
  636.         '''
  637.         Update the option values from an arbitrary dictionary, but only
  638.         use keys from dict that already have a corresponding attribute
  639.         in self.  Any keys in dict without a corresponding attribute
  640.         are silently ignored.
  641.         '''
  642.         for attr in dir(self):
  643.             if dict.has_key(attr):
  644.                 dval = dict[attr]
  645.                 if dval is not None:
  646.                     setattr(self, attr, dval)
  647.                 
  648.             dval is not None
  649.         
  650.  
  651.     
  652.     def _update_loose(self, dict):
  653.         '''
  654.         Update the option values from an arbitrary dictionary,
  655.         using all keys from the dictionary regardless of whether
  656.         they have a corresponding attribute in self or not.
  657.         '''
  658.         self.__dict__.update(dict)
  659.  
  660.     
  661.     def _update(self, dict, mode):
  662.         if mode == 'careful':
  663.             self._update_careful(dict)
  664.         elif mode == 'loose':
  665.             self._update_loose(dict)
  666.         else:
  667.             raise ValueError, 'invalid update mode: %r' % mode
  668.  
  669.     
  670.     def read_module(self, modname, mode = 'careful'):
  671.         __import__(modname)
  672.         mod = sys.modules[modname]
  673.         self._update(vars(mod), mode)
  674.  
  675.     
  676.     def read_file(self, filename, mode = 'careful'):
  677.         vars = { }
  678.         execfile(filename, vars)
  679.         self._update(vars, mode)
  680.  
  681.     
  682.     def ensure_value(self, attr, value):
  683.         if not hasattr(self, attr) or getattr(self, attr) is None:
  684.             setattr(self, attr, value)
  685.         
  686.         return getattr(self, attr)
  687.  
  688.  
  689.  
  690. class OptionContainer:
  691.     '''
  692.     Abstract base class.
  693.  
  694.     Class attributes:
  695.       standard_option_list : [Option]
  696.         list of standard options that will be accepted by all instances
  697.         of this parser class (intended to be overridden by subclasses).
  698.  
  699.     Instance attributes:
  700.       option_list : [Option]
  701.         the list of Option objects contained by this OptionContainer
  702.       _short_opt : { string : Option }
  703.         dictionary mapping short option strings, eg. "-f" or "-X",
  704.         to the Option instances that implement them.  If an Option
  705.         has multiple short option strings, it will appears in this
  706.         dictionary multiple times. [1]
  707.       _long_opt : { string : Option }
  708.         dictionary mapping long option strings, eg. "--file" or
  709.         "--exclude", to the Option instances that implement them.
  710.         Again, a given Option can occur multiple times in this
  711.         dictionary. [1]
  712.       defaults : { string : any }
  713.         dictionary mapping option destination names to default
  714.         values for each destination [1]
  715.  
  716.     [1] These mappings are common to (shared by) all components of the
  717.         controlling OptionParser, where they are initially created.
  718.  
  719.     '''
  720.     
  721.     def __init__(self, option_class, conflict_handler, description):
  722.         self._create_option_list()
  723.         self.option_class = option_class
  724.         self.set_conflict_handler(conflict_handler)
  725.         self.set_description(description)
  726.  
  727.     
  728.     def _create_option_mappings(self):
  729.         self._short_opt = { }
  730.         self._long_opt = { }
  731.         self.defaults = { }
  732.  
  733.     
  734.     def _share_option_mappings(self, parser):
  735.         self._short_opt = parser._short_opt
  736.         self._long_opt = parser._long_opt
  737.         self.defaults = parser.defaults
  738.  
  739.     
  740.     def set_conflict_handler(self, handler):
  741.         if handler not in ('error', 'resolve'):
  742.             raise ValueError, 'invalid conflict_resolution value %r' % handler
  743.         
  744.         self.conflict_handler = handler
  745.  
  746.     
  747.     def set_description(self, description):
  748.         self.description = description
  749.  
  750.     
  751.     def get_description(self):
  752.         return self.description
  753.  
  754.     
  755.     def _check_conflict(self, option):
  756.         conflict_opts = []
  757.         for opt in option._short_opts:
  758.             if self._short_opt.has_key(opt):
  759.                 conflict_opts.append((opt, self._short_opt[opt]))
  760.                 continue
  761.         
  762.         for opt in option._long_opts:
  763.             if self._long_opt.has_key(opt):
  764.                 conflict_opts.append((opt, self._long_opt[opt]))
  765.                 continue
  766.         
  767.         if conflict_opts:
  768.             handler = self.conflict_handler
  769.             if handler == 'error':
  770.                 raise ', '.join([] % []([ co[0] for co in conflict_opts ]), option)
  771.             elif handler == 'resolve':
  772.                 for opt, c_option in conflict_opts:
  773.                     if opt.startswith('--'):
  774.                         c_option._long_opts.remove(opt)
  775.                         del self._long_opt[opt]
  776.                     else:
  777.                         c_option._short_opts.remove(opt)
  778.                         del self._short_opt[opt]
  779.                     if not c_option._short_opts or c_option._long_opts:
  780.                         c_option.container.option_list.remove(c_option)
  781.                         continue
  782.                 
  783.             
  784.         
  785.  
  786.     
  787.     def add_option(self, *args, **kwargs):
  788.         '''add_option(Option)
  789.            add_option(opt_str, ..., kwarg=val, ...)
  790.         '''
  791.         if type(args[0]) is types.StringType:
  792.             option = self.option_class(*args, **kwargs)
  793.         elif len(args) == 1 and not kwargs:
  794.             option = args[0]
  795.             if not isinstance(option, Option):
  796.                 raise TypeError, 'not an Option instance: %r' % option
  797.             
  798.         else:
  799.             raise TypeError, 'invalid arguments'
  800.         self._check_conflict(option)
  801.         self.option_list.append(option)
  802.         option.container = self
  803.         for opt in option._short_opts:
  804.             self._short_opt[opt] = option
  805.         
  806.         for opt in option._long_opts:
  807.             self._long_opt[opt] = option
  808.         
  809.         if option.dest is not None:
  810.             if option.default is not NO_DEFAULT:
  811.                 self.defaults[option.dest] = option.default
  812.             elif not self.defaults.has_key(option.dest):
  813.                 self.defaults[option.dest] = None
  814.             
  815.         
  816.         return option
  817.  
  818.     
  819.     def add_options(self, option_list):
  820.         for option in option_list:
  821.             self.add_option(option)
  822.         
  823.  
  824.     
  825.     def get_option(self, opt_str):
  826.         if not self._short_opt.get(opt_str):
  827.             pass
  828.         return self._long_opt.get(opt_str)
  829.  
  830.     
  831.     def has_option(self, opt_str):
  832.         if not self._short_opt.has_key(opt_str):
  833.             pass
  834.         return self._long_opt.has_key(opt_str)
  835.  
  836.     
  837.     def remove_option(self, opt_str):
  838.         option = self._short_opt.get(opt_str)
  839.         if option is None:
  840.             option = self._long_opt.get(opt_str)
  841.         
  842.         if option is None:
  843.             raise ValueError('no such option %r' % opt_str)
  844.         
  845.         for opt in option._short_opts:
  846.             del self._short_opt[opt]
  847.         
  848.         for opt in option._long_opts:
  849.             del self._long_opt[opt]
  850.         
  851.         option.container.option_list.remove(option)
  852.  
  853.     
  854.     def format_option_help(self, formatter):
  855.         if not self.option_list:
  856.             return ''
  857.         
  858.         result = []
  859.         for option in self.option_list:
  860.             if option.help is not SUPPRESS_HELP:
  861.                 result.append(formatter.format_option(option))
  862.                 continue
  863.         
  864.         return ''.join(result)
  865.  
  866.     
  867.     def format_description(self, formatter):
  868.         return formatter.format_description(self.get_description())
  869.  
  870.     
  871.     def format_help(self, formatter):
  872.         result = []
  873.         if self.description:
  874.             result.append(self.format_description(formatter))
  875.         
  876.         if self.option_list:
  877.             result.append(self.format_option_help(formatter))
  878.         
  879.         return '\n'.join(result)
  880.  
  881.  
  882.  
  883. class OptionGroup(OptionContainer):
  884.     
  885.     def __init__(self, parser, title, description = None):
  886.         self.parser = parser
  887.         OptionContainer.__init__(self, parser.option_class, parser.conflict_handler, description)
  888.         self.title = title
  889.  
  890.     
  891.     def _create_option_list(self):
  892.         self.option_list = []
  893.         self._share_option_mappings(self.parser)
  894.  
  895.     
  896.     def set_title(self, title):
  897.         self.title = title
  898.  
  899.     
  900.     def format_help(self, formatter):
  901.         result = formatter.format_heading(self.title)
  902.         formatter.indent()
  903.         result += OptionContainer.format_help(self, formatter)
  904.         formatter.dedent()
  905.         return result
  906.  
  907.  
  908.  
  909. class OptionParser(OptionContainer):
  910.     '''
  911.     Class attributes:
  912.       standard_option_list : [Option]
  913.         list of standard options that will be accepted by all instances
  914.         of this parser class (intended to be overridden by subclasses).
  915.  
  916.     Instance attributes:
  917.       usage : string
  918.         a usage string for your program.  Before it is displayed
  919.         to the user, "%prog" will be expanded to the name of
  920.         your program (self.prog or os.path.basename(sys.argv[0])).
  921.       prog : string
  922.         the name of the current program (to override
  923.         os.path.basename(sys.argv[0])).
  924.  
  925.       option_groups : [OptionGroup]
  926.         list of option groups in this parser (option groups are
  927.         irrelevant for parsing the command-line, but very useful
  928.         for generating help)
  929.  
  930.       allow_interspersed_args : bool = true
  931.         if true, positional arguments may be interspersed with options.
  932.         Assuming -a and -b each take a single argument, the command-line
  933.           -ablah foo bar -bboo baz
  934.         will be interpreted the same as
  935.           -ablah -bboo -- foo bar baz
  936.         If this flag were false, that command line would be interpreted as
  937.           -ablah -- foo bar -bboo baz
  938.         -- ie. we stop processing options as soon as we see the first
  939.         non-option argument.  (This is the tradition followed by
  940.         Python\'s getopt module, Perl\'s Getopt::Std, and other argument-
  941.         parsing libraries, but it is generally annoying to users.)
  942.  
  943.       process_default_values : bool = true
  944.         if true, option default values are processed similarly to option
  945.         values from the command line: that is, they are passed to the
  946.         type-checking function for the option\'s type (as long as the
  947.         default value is a string).  (This really only matters if you
  948.         have defined custom types; see SF bug #955889.)  Set it to false
  949.         to restore the behaviour of Optik 1.4.1 and earlier.
  950.  
  951.       rargs : [string]
  952.         the argument list currently being parsed.  Only set when
  953.         parse_args() is active, and continually trimmed down as
  954.         we consume arguments.  Mainly there for the benefit of
  955.         callback options.
  956.       largs : [string]
  957.         the list of leftover arguments that we have skipped while
  958.         parsing options.  If allow_interspersed_args is false, this
  959.         list is always empty.
  960.       values : Values
  961.         the set of option values currently being accumulated.  Only
  962.         set when parse_args() is active.  Also mainly for callbacks.
  963.  
  964.     Because of the \'rargs\', \'largs\', and \'values\' attributes,
  965.     OptionParser is not thread-safe.  If, for some perverse reason, you
  966.     need to parse command-line arguments simultaneously in different
  967.     threads, use different OptionParser instances.
  968.  
  969.     '''
  970.     standard_option_list = []
  971.     
  972.     def __init__(self, usage = None, option_list = None, option_class = Option, version = None, conflict_handler = 'error', description = None, formatter = None, add_help_option = True, prog = None):
  973.         OptionContainer.__init__(self, option_class, conflict_handler, description)
  974.         self.set_usage(usage)
  975.         self.prog = prog
  976.         self.version = version
  977.         self.allow_interspersed_args = True
  978.         self.process_default_values = True
  979.         if formatter is None:
  980.             formatter = IndentedHelpFormatter()
  981.         
  982.         self.formatter = formatter
  983.         self.formatter.set_parser(self)
  984.         self._populate_option_list(option_list, add_help = add_help_option)
  985.         self._init_parsing_state()
  986.  
  987.     
  988.     def _create_option_list(self):
  989.         self.option_list = []
  990.         self.option_groups = []
  991.         self._create_option_mappings()
  992.  
  993.     
  994.     def _add_help_option(self):
  995.         self.add_option('-h', '--help', action = 'help', help = _('show this help message and exit'))
  996.  
  997.     
  998.     def _add_version_option(self):
  999.         self.add_option('--version', action = 'version', help = _("show program's version number and exit"))
  1000.  
  1001.     
  1002.     def _populate_option_list(self, option_list, add_help = True):
  1003.         if self.standard_option_list:
  1004.             self.add_options(self.standard_option_list)
  1005.         
  1006.         if option_list:
  1007.             self.add_options(option_list)
  1008.         
  1009.         if self.version:
  1010.             self._add_version_option()
  1011.         
  1012.         if add_help:
  1013.             self._add_help_option()
  1014.         
  1015.  
  1016.     
  1017.     def _init_parsing_state(self):
  1018.         self.rargs = None
  1019.         self.largs = None
  1020.         self.values = None
  1021.  
  1022.     
  1023.     def set_usage(self, usage):
  1024.         if usage is None:
  1025.             self.usage = _('%prog [options]')
  1026.         elif usage is SUPPRESS_USAGE:
  1027.             self.usage = None
  1028.         elif usage.startswith('usage:' + ' '):
  1029.             self.usage = usage[7:]
  1030.         else:
  1031.             self.usage = usage
  1032.  
  1033.     
  1034.     def enable_interspersed_args(self):
  1035.         self.allow_interspersed_args = True
  1036.  
  1037.     
  1038.     def disable_interspersed_args(self):
  1039.         self.allow_interspersed_args = False
  1040.  
  1041.     
  1042.     def set_process_default_values(self, process):
  1043.         self.process_default_values = process
  1044.  
  1045.     
  1046.     def set_default(self, dest, value):
  1047.         self.defaults[dest] = value
  1048.  
  1049.     
  1050.     def set_defaults(self, **kwargs):
  1051.         self.defaults.update(kwargs)
  1052.  
  1053.     
  1054.     def _get_all_options(self):
  1055.         options = self.option_list[:]
  1056.         for group in self.option_groups:
  1057.             options.extend(group.option_list)
  1058.         
  1059.         return options
  1060.  
  1061.     
  1062.     def get_default_values(self):
  1063.         if not self.process_default_values:
  1064.             return Values(self.defaults)
  1065.         
  1066.         defaults = self.defaults.copy()
  1067.         for option in self._get_all_options():
  1068.             default = defaults.get(option.dest)
  1069.             if isinstance(default, basestring):
  1070.                 opt_str = option.get_opt_string()
  1071.                 defaults[option.dest] = option.check_value(opt_str, default)
  1072.                 continue
  1073.         
  1074.         return Values(defaults)
  1075.  
  1076.     
  1077.     def add_option_group(self, *args, **kwargs):
  1078.         if type(args[0]) is types.StringType:
  1079.             group = OptionGroup(self, *args, **kwargs)
  1080.         elif len(args) == 1 and not kwargs:
  1081.             group = args[0]
  1082.             if not isinstance(group, OptionGroup):
  1083.                 raise TypeError, 'not an OptionGroup instance: %r' % group
  1084.             
  1085.             if group.parser is not self:
  1086.                 raise ValueError, 'invalid OptionGroup (wrong parser)'
  1087.             
  1088.         else:
  1089.             raise TypeError, 'invalid arguments'
  1090.         self.option_groups.append(group)
  1091.         return group
  1092.  
  1093.     
  1094.     def get_option_group(self, opt_str):
  1095.         if not self._short_opt.get(opt_str):
  1096.             pass
  1097.         option = self._long_opt.get(opt_str)
  1098.         if option and option.container is not self:
  1099.             return option.container
  1100.         
  1101.  
  1102.     
  1103.     def _get_args(self, args):
  1104.         if args is None:
  1105.             return sys.argv[1:]
  1106.         else:
  1107.             return args[:]
  1108.  
  1109.     
  1110.     def parse_args(self, args = None, values = None):
  1111.         """
  1112.         parse_args(args : [string] = sys.argv[1:],
  1113.                    values : Values = None)
  1114.         -> (values : Values, args : [string])
  1115.  
  1116.         Parse the command-line options found in 'args' (default:
  1117.         sys.argv[1:]).  Any errors result in a call to 'error()', which
  1118.         by default prints the usage message to stderr and calls
  1119.         sys.exit() with an error message.  On success returns a pair
  1120.         (values, args) where 'values' is an Values instance (with all
  1121.         your option values) and 'args' is the list of arguments left
  1122.         over after parsing options.
  1123.         """
  1124.         rargs = self._get_args(args)
  1125.         if values is None:
  1126.             values = self.get_default_values()
  1127.         
  1128.         self.rargs = rargs
  1129.         self.largs = largs = []
  1130.         self.values = values
  1131.         
  1132.         try:
  1133.             stop = self._process_args(largs, rargs, values)
  1134.         except (BadOptionError, OptionValueError):
  1135.             err = None
  1136.             self.error(err.msg)
  1137.  
  1138.         args = largs + rargs
  1139.         return self.check_values(values, args)
  1140.  
  1141.     
  1142.     def check_values(self, values, args):
  1143.         '''
  1144.         check_values(values : Values, args : [string])
  1145.         -> (values : Values, args : [string])
  1146.  
  1147.         Check that the supplied option values and leftover arguments are
  1148.         valid.  Returns the option values and leftover arguments
  1149.         (possibly adjusted, possibly completely new -- whatever you
  1150.         like).  Default implementation just returns the passed-in
  1151.         values; subclasses may override as desired.
  1152.         '''
  1153.         return (values, args)
  1154.  
  1155.     
  1156.     def _process_args(self, largs, rargs, values):
  1157.         """_process_args(largs : [string],
  1158.                          rargs : [string],
  1159.                          values : Values)
  1160.  
  1161.         Process command-line arguments and populate 'values', consuming
  1162.         options and arguments from 'rargs'.  If 'allow_interspersed_args' is
  1163.         false, stop at the first non-option argument.  If true, accumulate any
  1164.         interspersed non-option arguments in 'largs'.
  1165.         """
  1166.         while rargs:
  1167.             arg = rargs[0]
  1168.             if arg == '--':
  1169.                 del rargs[0]
  1170.                 return None
  1171.                 continue
  1172.             if arg[0:2] == '--':
  1173.                 self._process_long_opt(rargs, values)
  1174.                 continue
  1175.             if arg[:1] == '-' and len(arg) > 1:
  1176.                 self._process_short_opts(rargs, values)
  1177.                 continue
  1178.             if self.allow_interspersed_args:
  1179.                 largs.append(arg)
  1180.                 del rargs[0]
  1181.                 continue
  1182.             return None
  1183.  
  1184.     
  1185.     def _match_long_opt(self, opt):
  1186.         """_match_long_opt(opt : string) -> string
  1187.  
  1188.         Determine which long option string 'opt' matches, ie. which one
  1189.         it is an unambiguous abbrevation for.  Raises BadOptionError if
  1190.         'opt' doesn't unambiguously match any long option string.
  1191.         """
  1192.         return _match_abbrev(opt, self._long_opt)
  1193.  
  1194.     
  1195.     def _process_long_opt(self, rargs, values):
  1196.         arg = rargs.pop(0)
  1197.         if '=' in arg:
  1198.             (opt, next_arg) = arg.split('=', 1)
  1199.             rargs.insert(0, next_arg)
  1200.             had_explicit_value = True
  1201.         else:
  1202.             opt = arg
  1203.             had_explicit_value = False
  1204.         opt = self._match_long_opt(opt)
  1205.         option = self._long_opt[opt]
  1206.         if option.takes_value():
  1207.             nargs = option.nargs
  1208.             if len(rargs) < nargs:
  1209.                 if nargs == 1:
  1210.                     self.error(_('%s option requires an argument') % opt)
  1211.                 else:
  1212.                     self.error(_('%s option requires %d arguments') % (opt, nargs))
  1213.             elif nargs == 1:
  1214.                 value = rargs.pop(0)
  1215.             else:
  1216.                 value = tuple(rargs[0:nargs])
  1217.                 del rargs[0:nargs]
  1218.         elif had_explicit_value:
  1219.             self.error(_('%s option does not take a value') % opt)
  1220.         else:
  1221.             value = None
  1222.         option.process(opt, value, values, self)
  1223.  
  1224.     
  1225.     def _process_short_opts(self, rargs, values):
  1226.         arg = rargs.pop(0)
  1227.         stop = False
  1228.         i = 1
  1229.         for ch in arg[1:]:
  1230.             opt = '-' + ch
  1231.             option = self._short_opt.get(opt)
  1232.             i += 1
  1233.             if not option:
  1234.                 self.error(_('no such option: %s') % opt)
  1235.             
  1236.             if option.takes_value():
  1237.                 if i < len(arg):
  1238.                     rargs.insert(0, arg[i:])
  1239.                     stop = True
  1240.                 
  1241.                 nargs = option.nargs
  1242.                 if len(rargs) < nargs:
  1243.                     if nargs == 1:
  1244.                         self.error(_('%s option requires an argument') % opt)
  1245.                     else:
  1246.                         self.error(_('%s option requires %d arguments') % (opt, nargs))
  1247.                 elif nargs == 1:
  1248.                     value = rargs.pop(0)
  1249.                 else:
  1250.                     value = tuple(rargs[0:nargs])
  1251.                     del rargs[0:nargs]
  1252.             else:
  1253.                 value = None
  1254.             option.process(opt, value, values, self)
  1255.             if stop:
  1256.                 break
  1257.                 continue
  1258.         
  1259.  
  1260.     
  1261.     def get_prog_name(self):
  1262.         if self.prog is None:
  1263.             return os.path.basename(sys.argv[0])
  1264.         else:
  1265.             return self.prog
  1266.  
  1267.     
  1268.     def expand_prog_name(self, s):
  1269.         return s.replace('%prog', self.get_prog_name())
  1270.  
  1271.     
  1272.     def get_description(self):
  1273.         return self.expand_prog_name(self.description)
  1274.  
  1275.     
  1276.     def exit(self, status = 0, msg = None):
  1277.         if msg:
  1278.             sys.stderr.write(msg)
  1279.         
  1280.         sys.exit(status)
  1281.  
  1282.     
  1283.     def error(self, msg):
  1284.         """error(msg : string)
  1285.  
  1286.         Print a usage message incorporating 'msg' to stderr and exit.
  1287.         If you override this in a subclass, it should not return -- it
  1288.         should either exit or raise an exception.
  1289.         """
  1290.         self.print_usage(sys.stderr)
  1291.         self.exit(2, '%s: error: %s\n' % (self.get_prog_name(), msg))
  1292.  
  1293.     
  1294.     def get_usage(self):
  1295.         if self.usage:
  1296.             return self.formatter.format_usage(self.expand_prog_name(self.usage))
  1297.         else:
  1298.             return ''
  1299.  
  1300.     
  1301.     def print_usage(self, file = None):
  1302.         '''print_usage(file : file = stdout)
  1303.  
  1304.         Print the usage message for the current program (self.usage) to
  1305.         \'file\' (default stdout).  Any occurence of the string "%prog" in
  1306.         self.usage is replaced with the name of the current program
  1307.         (basename of sys.argv[0]).  Does nothing if self.usage is empty
  1308.         or not defined.
  1309.         '''
  1310.         if self.usage:
  1311.             print >>file, self.get_usage()
  1312.         
  1313.  
  1314.     
  1315.     def get_version(self):
  1316.         if self.version:
  1317.             return self.expand_prog_name(self.version)
  1318.         else:
  1319.             return ''
  1320.  
  1321.     
  1322.     def print_version(self, file = None):
  1323.         '''print_version(file : file = stdout)
  1324.  
  1325.         Print the version message for this program (self.version) to
  1326.         \'file\' (default stdout).  As with print_usage(), any occurence
  1327.         of "%prog" in self.version is replaced by the current program\'s
  1328.         name.  Does nothing if self.version is empty or undefined.
  1329.         '''
  1330.         if self.version:
  1331.             print >>file, self.get_version()
  1332.         
  1333.  
  1334.     
  1335.     def format_option_help(self, formatter = None):
  1336.         if formatter is None:
  1337.             formatter = self.formatter
  1338.         
  1339.         formatter.store_option_strings(self)
  1340.         result = []
  1341.         result.append(formatter.format_heading(_('options')))
  1342.         formatter.indent()
  1343.         if self.option_list:
  1344.             result.append(OptionContainer.format_option_help(self, formatter))
  1345.             result.append('\n')
  1346.         
  1347.         for group in self.option_groups:
  1348.             result.append(group.format_help(formatter))
  1349.             result.append('\n')
  1350.         
  1351.         formatter.dedent()
  1352.         return ''.join(result[:-1])
  1353.  
  1354.     
  1355.     def format_help(self, formatter = None):
  1356.         if formatter is None:
  1357.             formatter = self.formatter
  1358.         
  1359.         result = []
  1360.         if self.usage:
  1361.             result.append(self.get_usage() + '\n')
  1362.         
  1363.         if self.description:
  1364.             result.append(self.format_description(formatter) + '\n')
  1365.         
  1366.         result.append(self.format_option_help(formatter))
  1367.         return ''.join(result)
  1368.  
  1369.     
  1370.     def print_help(self, file = None):
  1371.         """print_help(file : file = stdout)
  1372.  
  1373.         Print an extended help message, listing all options and any
  1374.         help text provided with them, to 'file' (default stdout).
  1375.         """
  1376.         if file is None:
  1377.             file = sys.stdout
  1378.         
  1379.         file.write(self.format_help())
  1380.  
  1381.  
  1382.  
  1383. def _match_abbrev(s, wordmap):
  1384.     """_match_abbrev(s : string, wordmap : {string : Option}) -> string
  1385.  
  1386.     Return the string key in 'wordmap' for which 's' is an unambiguous
  1387.     abbreviation.  If 's' is found to be ambiguous or doesn't match any of
  1388.     'words', raise BadOptionError.
  1389.     """
  1390.     if wordmap.has_key(s):
  1391.         return s
  1392.     else:
  1393.         possibilities = _[1]
  1394.         if len(possibilities) == 1:
  1395.             return possibilities[0]
  1396.         elif not possibilities:
  1397.             raise BadOptionError(_('no such option: %s') % s)
  1398.         else:
  1399.             raise BadOptionError(_('ambiguous option: %s (%s?)') % (s, ', '.join(possibilities)))
  1400.  
  1401. make_option = Option
  1402.